@charset "UTF-8";

.header-wrap-con {
    width: 1200px;
    margin: 0 auto;
    height: 234px;
    background: url(./header.jpg) no-repeat left center;
}

.link-wrap {
    float: right;
    margin: 7px 0;
}

.link-wrap>* {
    float: left;
}

.link-wrap a {
    cursor: pointer;
    padding: 0 5px;
    transition: color .2s;
}

.link-wrap a:hover {
    color: #ff0000;
}

.searchWrapper {
    margin-top: 45px;
}

.searchWrapper a {
    display: block;
    float: left;
    width: 405px;
    height: 76px;
    background: transparent url('./logo.png') left center no-repeat;
}

.searchWrapper .logo {
    width: auto;
}

.searchWrapper .search-wrap {
    width: 668px;
    height: 100px;
    float: right;
}

.search-wrap-tab .item {
    float: left;
    height: 50px;
    line-height: 50px;
    margin: 0 60px;
    cursor: pointer;
    transition: color .2s;
    position: relative;
    width: auto ;
}

.search-wrap-tab .item:hover,
.search-wrap-tab .item.active {
    color: #e22323;
    border: none;
}

.search-wrap-tab .item.active::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #ccc;
    transform: rotate(45deg) translateX(-50%);
    z-index: 2;
}

.search-wrap-tab .item.active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    transform: rotate(45deg) translateX(-50%);
    border: 7px solid #fff;
    z-index: 4;
}

.search-input-wrap .item {
    position: relative;
    display: none;
    z-index: 3;
}

.search-input-wrap .item.show {
    display: block;
}

.search-input-wrap .item .tabSearchText {
    display: block;
    width: calc(100% - 68px);
    height: 50px;
    padding: 0 10px;
    border: 1px solid #ccc;
    float: left;
    background: #fff;
}

.search-input-wrap .item .tabSearchButton {
    float: right;
    width: 68px;
    height: 50px;
    background: #e22323 url(./magnifier.png) no-repeat center center;
    cursor: pointer;
}

/* 导航栏 */
.navWrapper {
    height: 54px;
    background-color: #e22323;
    font-size: 16px;
}

.navList {
    width: 1200px;
    margin: 0 auto;
}

.navList li {
    float: left;
    position: relative;
}

.navList li::before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #ec593b;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
}

.navList li::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 5px;
    margin-left: -40px;
    background: #fb7d80;
    display: none;
}

.navList li:hover::after {
    display: block;
}

.navList li a {
    display: block;
    width: 109px;
    text-align: center;
    height: 54px;
    line-height: 54px;
    color: #fff;
}